home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Telecommunications / WWIV Mac BBS / BBS Sample Source / modifyseclev.tp < prev    next >
Encoding:
Text File  |  1987-06-21  |  17.1 KB  |  556 lines  |  [TEXT/ttxt]

  1. { BBS Utility program and documentation for all major BBS files }
  2. { Modify SecLev file - T R Teague - 17 Oct 86 }
  3. { This version works under Mac Turbo Pascal }
  4. { modified for version 1.1 of WWIV Mac BBS - T R Teague - 1 Jan 87 }
  5. { modified for version 2.0 of WWIV Mac BBS - T R Teague - 22 Mar 87 }
  6. { modified for version 2.2 of WWIV Mac BBS - T R Teague - 25 May 87 }
  7.  
  8. program ModifySecLev;
  9.  
  10. uses
  11.      MemTypes,
  12.      QuickDraw,
  13.      OSIntf,
  14.      ToolIntf,
  15.      PackIntf;
  16.      
  17. { Standard const's, types, vars for BBS files }
  18.  
  19. const
  20.      strlen = 160; { length of string }
  21.      
  22.      { added - TRT - 25 May 87 }
  23.      { user-modifable resources }
  24.  
  25.      StrID = 1000;
  26.      NumStrItems = 5;
  27.  
  28.      DLoadsStrID = 1001;
  29.      MsgsStrID = 1002;
  30.      numcomptypes = 11; { added for 2.2 - TRT - 21 Jun 87 }
  31.  
  32. type
  33.      strtype=string[strlen]; { string type }
  34.  
  35. { enumerated list of user restrictions }
  36.   logons 2/day ('L'), no chatting ('C'), unvalidated messages ('V'), no backspacing ('B'),
  37.   can't change automsg/add to BBS list ('A'), can't post anonymous msgs ('*'),
  38.   can't post at all ('P'), can't send send E-Mail ('E'), can't vote ('K'),
  39.   can't auto-delete msgs ('M')
  40. }
  41. restrictions=(rlogon,rchat,rvalidate,rbackspace,ramsg,rpostan,
  42.                    rpost,remail,rvoting,rmsg); 
  43.  
  44.      acrq='@'..'G'; { board access : none, A -> G - not really used }
  45.  
  46. { emunerated user defaults : spinning cursor, onekey input, word wrap, screen pause }
  47.      deflts=(spcsr,onekey,wordwrap,pause);
  48.  
  49. { emunerated anon msg board types : no, yes, forced, dearabby }
  50.      anontyp=(no,yes,forced,dearabby); 
  51.  
  52. { enumerated security level types : can post, can E-Mail, can post anonymously, 
  53.   can see anon names on msgs,  co-sysop, limited co-sysop }
  54.      ansttype=(postn,emailn,pana,sanm,cosysop,lcosysop);
  55.  
  56. { enumerated special user alerts : alert, can't ???, can't receive E-Mail }
  57.      opts=(myalert,smw,nomail); 
  58.      
  59.      { modified for version 1.1 & 2.0 }
  60.      pnr=record { phone no. info - for sysop's mini-terminal }
  61.            name:string[39]; { name of BBS service }
  62.            number:string[32]; { phone no. }
  63.            hs:byte; { baud rate - 300/1200/2400/9600 }
  64.          end;
  65.      slr=record { security level info }
  66.            ttime:byte; { max. no. of mins allowed on }
  67.            mallowed:integer; { max. no. of msgs allowed to be read }
  68.            emails,posts:byte; { max. no. of E-Mail and msgs to be posted }
  69.            anst:set of ansttype; { set of security level types  - see above }
  70.          end;
  71.      messages=record { msgs filename info  - e.g filename of form A-32767.1 }
  72.                 ltr:char; { board letter (i.e. A = board no. 1) }
  73.                 number:integer; { unique msg number }
  74.                 ext:byte; { unique msg number for filename extension (MS-DOS) }
  75.               end;
  76.      smalrec=record { names list of users }
  77.                name:string[25]; { alias }
  78.                number:integer; { user no. }
  79.              end;
  80.      userrec=record { user info }
  81.                name:string[25]; { alias }
  82.                realname:string[14]; { realname }
  83.                deleted:boolean; { deleted flag }
  84.                pw:string[8]; { password }
  85.                ph:string[12]; { phone no. }
  86.                waiting:byte; { no. of E-Mail msgs waiting }
  87.                laston:string[10]; { last on date }
  88.                loggedon:integer; { total no. of times logged on system }
  89.                msgpost:integer; { total no. of msgs posted }
  90.                emailsent:integer; { total no. of E-Mail msgs sent }
  91.                feedback:integer; { total no. of feedback msgs sent }
  92.                linelen:byte; { user's screen width }
  93.                pagelen:byte; { user's screen height }
  94.                defaults:set of deflts; { set of user defaults (on/off) - see above }
  95.                ontoday:byte; { no. of times logged on today }
  96.                illegal:byte; { no. of illegal logons today }
  97.                cursor:string[10]; { spinning cursor (if any) "word" }
  98.                sl:byte; { security level }
  99.                ac:set of restrictions; { set of user restrictions (on/off) - see above }
  100.                ar:set of acrq; { set of boards user has access to (on/off) - not really used - see above }
  101.                qscan:array[1..19] of messages; { last msg Q-scanned for each 1 of 19 possible boards }
  102.                qscn:array[1..19] of boolean; { configured Q-Scan flags for up to 19 boards }
  103.                macro:array[1..2] of string[79]; { control-d & control-f macro expansions }
  104.                comptype:byte; { computer type (1 -> numcomptypes) as set up elsewhere }
  105.                option:set of opts; { set of user options (on/off) - see above }
  106.                vote:array[1..9] of byte; { voted flags for up to 9 questions }
  107.                sbn:byte; { "special board no." - user has rights to validate/delete msgs on board (0 = All) }
  108.                dsl:byte; { download security level }
  109.                uploads,downloads:integer; { No. of files uploaded/downloaded }
  110.                uk,dk:integer; { No. of Kb's uploaded/downloaded }
  111.              end;
  112.       boardrec=record { msg board info }
  113.                  name:string[25]; { board title }
  114.                  filename:string[12]; { name of file used to hold msgs info }
  115.                  sl:byte; { min. security level needed to access this board }
  116.                  maxmsgs:byte; { max. no. of msgs allowed on this board }
  117.                  pw:string[10]; { board password (if any) }
  118.                  anonymous:anontyp; { type of anonymous access to this board - see above }
  119.                  ar:acrq; { access required for this board (not really used) - see above }
  120.                  key:char; { character required to reach this board - i.e. 1 -> 19, or this char }
  121.                end;
  122.       msgstat=(validated,unvalidated,deleted); { enumerated msg types - validated, unvalidated, deleted }
  123.       messagerec=record { msgs info }
  124.                    title:string[30]; { title of msg }
  125.                    messagestat:msgstat; { msg type - see above }
  126.                    message:messages; { msg filename info - see above }
  127.                    owner:integer; { user no. of sender }
  128.                    date:integer; { date posted }
  129.                    mage:byte; { message age in days }
  130.                  end;
  131.       systatrec=record { status record }
  132.                   boardpw:string[8]; { closed board password (if any) }
  133.                   sysoppw:string[8]; { sysop's 2nd password }
  134.                   hmsg:messages; { msg filename info - next avail. msg filename ??? }
  135.                   users:integer; { no. of users currently on system }
  136.                   lastdate:string[8]; { last date that system was used }
  137.                   callernum:integer; { current/next caller no. }
  138.                   activetoday:integer; { amount of time in mins that system was up }
  139.                   callstoday:integer; { no. of calls today }
  140.                   msgposttoday:integer; { no. of msgs posted today }
  141.                   emailtoday:integer; { no. of E-Mail msgs sent today }
  142.                   fbacktoday:integer; { no. of Feedback msgs sent today }
  143.                   uptoday:integer; { no. of uploads today }
  144.                   closedsystem:boolean; { closed system flag }
  145.                 end;
  146.       mailrec=record { E-Mail info }
  147.                 title:string[30]; { title of msg }
  148.                 from,destin:integer; { user no. of sender, recipient }
  149.                 msg:messages; { msg filename info - see above }
  150.                 date:integer; { date sent }
  151.                 mage:byte; { message age in days }
  152.               end;
  153.       gft=record { G-Files info }
  154.             num:integer; { section no. }
  155.             title:string[40]; { G-File title }
  156.             filen:string[12]; { G-File filename }
  157.           end;
  158.       charfil=text; { character file type }
  159.       smr=record { small msg info }
  160.             msg:strtype; { the msg }
  161.             destin:integer; { user no. of recipient }
  162.           end;
  163.       vdatar=record { voting data info }
  164.                question:string[79]; { question }
  165.                numa:integer; { no. of answers }
  166.                answ:array[0..9] of record { 10 possible answers }
  167.                       ans:string[25]; { answer }
  168.                       numres:integer; { number of users voting this answer }
  169.                     end;
  170.              end;
  171.       ulrec=record { file section board data }
  172.               name:string[25]; { name of board }
  173.               filename:string[12]; { name of file that holds file section data }
  174.               password:string[10]; { board password (if any) }
  175.               dsl:byte; { min. security level needed to access this board }
  176.               maxfiles:integer; { max. no. of files allowed in this board }
  177.             end;
  178.       ulfrec=record { uploaded file info }
  179.                filename:string[12]; { filename }
  180.                description:string[60]; { description }
  181.                {res:array[1..17] of byte;} { reserved ??? }
  182.            realname : string[64]; { added for version 1.1 - MacBinary filename }
  183.                ft:array[1..3] of byte; { filetype - not really used (MS-DOS) }
  184.                blocks:integer; { size in blocks }
  185.                owner:integer; { user no. of uploader }
  186.                date:string[8]; { date uploaded }
  187.                daten:integer; { day no. of the year when uploaded }
  188.            numdloads : integer; { added for version 1.1 }
  189.              end;
  190.  
  191. var 
  192.     (* { file vars for different types of files }
  193.     
  194.     sf:file of smalrec; { filename = gfiles\names.lst }
  195.     uf:file of userrec; { filename = gfiles\user.lst }
  196.     bf:file of boardrec; { filename = gfiles\boards.dat }
  197.     mf:file of messagerec; { filename = gfiles\ + boards[board].filename }
  198.     mailfile:file of mailrec; { filename = gfiles\email.dat }
  199.     systatf:file of systatrec; { filename = gfiles\status }
  200.     smf:file of smr; { filename = gfiles\shortmsg.dat }
  201.     ulf : file of ulrec; { filename = gfiles\uploads.dat }
  202.     ulff : file of ulfrec; { filename = gfiles\ + uboards[board].filename }
  203.     fil : file of pnr; { filename = gfiles\numbers.trm }
  204.     vdf : file of vdatar; { filename = gfiles\voting.dat }
  205.     cf : file of smr; { filename = gfiles\chat.msg }
  206.     g : file of gft; { filename = gfiles\gfiles.dat }
  207.     fil : file of strtype; { filename = gfiles\laston.fil - names of last 8 callers }
  208.     
  209.     sysopf:charfil; { filename = gfiles\sysop.log, and gfiles\ysysop.log - today's & yesterday's logs }
  210.     { also other text files : gfiles\trashcan.txt - contains illegal names for aliases }
  211.     { gfiles\user.log - log of today's callers names }
  212.     { gfiles\votes.txt - output of voting data }
  213.     { gfiles\bbslist.msg - list of bbs's }
  214.     { gfiles\auto.msg - auto msg }
  215.     *)
  216.     
  217.     { modified - TRT - 25 May 87 }
  218.     {actual variables used by this program }
  219.     gfilespath : strtype;
  220.     pathdloads : strtype;
  221.     pathmsgs : strtype;
  222.  
  223.     msgspath : packed array [0..19] of string[80];
  224.     dloadspath : packed array [0..19] of string[80];
  225.     tempPtr : ^integer;
  226.     DefaultWD : integer;
  227.     UsingHFS : boolean;
  228.  
  229.     MyPoint : Point;
  230.     BBSrefNum : integer;
  231.     MyTypes : SFTypeList;
  232.     MyReply : SFReply;
  233.     IOError : OSErr;
  234.     
  235.     fw:integer;
  236.     slf:file of slr; { filename = gfiles\seclev.dat }
  237.     seclev:array[0..255] of slr;
  238.  
  239. { added - TRT - 25 May 87 }
  240. procedure InitCommon;
  241.  
  242. var
  243.    tempHandle : Handle;
  244.    tempint : integer;
  245.  
  246. begin { initcommon }
  247.    tempHandle := GetResource('STR#',StrID);
  248.    if (ResError <> noErr) or (tempHandle = nil) then
  249.    begin
  250.       writeln;
  251.       writeln('Sorry... couldn''t find the Resource STR# ID = ',StrID);
  252.       writeln;
  253.       writeln('Press mouse button to exit');
  254.       repeat until button;
  255.       exit(modifyseclev);
  256.    end;
  257.  
  258.    for tempint := 1 to NumStrItems do
  259.    begin { get user definable parameters from Resource file }
  260.  
  261.       case tempint of
  262.       1 : ;
  263.       2 : ;
  264.       3 : begin
  265.              GetIndString(tempstr,StrID,tempint);
  266.              gfilespath := tempstr;
  267.           end;
  268.       4 : begin { modified - TRT - 20/12/86 }
  269.              GetIndString(tempstr,StrID,tempint);
  270.              pathdloads := tempstr;
  271.           end;
  272.       5 : begin
  273.              GetIndString(tempstr,StrID,tempint);
  274.              pathmsgs := tempstr;
  275.           end;
  276.       end; { cases }
  277.    end;
  278.  
  279.    for tempint := 0 to 19 do
  280.    { get user definable parameters from Resource file }
  281.    begin
  282.       GetIndString(tempstr,MsgsStrID,tempint + 1);
  283.       if tempstr = '' then tempstr := pathmsgs;
  284.       msgspath[tempint] := tempstr;
  285.    end;
  286.  
  287.    for tempint := 0 to 19 do
  288.    { get user definable parameters from Resource file }
  289.    begin
  290.       GetIndString(tempstr,DLoadsStrID,tempint + 1);
  291.       if tempstr = '' then tempstr := pathdloads;
  292.       dloadspath[tempint] := tempstr;
  293.    end;
  294.  
  295. end; { initcommon }
  296.  
  297. begin
  298.    { don't really need these for Turbo Pascal }
  299.    
  300.    InitGraf(@ThePort); { Init QuickDraw }
  301.  
  302.    InitWindows;           { Init Window Manager - clear desktop & menu bar }
  303.    InitFonts;           { Init Font Manager }
  304.    FlushEvents(everyEvent,0); { Throw away any stray events }
  305.    TEInit;          { Init TextEdit }
  306.    InitMenus;           { Init Menu Manager }
  307.    InitDialogs(nil);
  308.  
  309.    DrawMenuBar;
  310.  
  311.    InitCursor;
  312.  
  313.    tempPtr := pointer($3F6); { fsFCBLen }
  314.    UsingHFS := tempPtr^ > 0;
  315.    IOError := GetVol(@tempstr,DefaultWD);
  316.  
  317.    { added - TRT - 25 May 87 }
  318.    writeln;
  319.    writeln('Choose the BBS File to Get Pathnames etc from');
  320.    writeln;
  321.  
  322.    MyPoint.h := 90; MyPoint.v := 30;
  323.    SFGetFile(MyPoint,'',nil,-1,MyTypes,nil,MyReply);
  324.    if MyReply.good then
  325.    begin
  326.       if UsingHFS then
  327.       begin
  328.      IOError := SetVol(nil,MyReply.vRefNum);
  329.      if IOError <> noErr then
  330.      begin
  331.         writeln;
  332.         writeln('I/O Error #',IOError,' while doing SetVol of ',MyReply.vRefNum);
  333.         writeln;
  334.      end;
  335.       end;
  336.  
  337.       BBSrefNum := OpenResFile(MyReply.fName);
  338.       if ResError <> noErr then
  339.       begin
  340.      writeln;
  341.      writeln('Resource Error #',ResError,' while doing OpenResFile');
  342.      writeln;
  343.       end;
  344.  
  345.       { IMPORTANT - do not call other CODE segments while BBS 
  346.             ResFile is open - it won't work! }
  347.  
  348.       InitCommon;
  349.  
  350.       if (BBSrefNum >= 0) then CloseResFile(BBSrefNum);
  351.  
  352.       if UsingHFS then
  353.       begin
  354.      IOError := SetVol(nil,DefaultWD);
  355.      if IOError <> noErr then
  356.      begin
  357.         writeln;
  358.         writeln('I/O Error #',IOError,' while doing SetVol of ',DefaultWD);
  359.         writeln;
  360.      end;
  361.       end;
  362.  
  363.       assign(slf,concat(gfilespath,'seclev.dat'));
  364.       rewrite(slf);
  365.       for fw := 0 to 255 do { these are the defaults used by the BBS for each security level }
  366.       with seclev[fw] do
  367.       begin
  368.       anst := [];
  369.     
  370.       if fw < 10 then
  371.       begin
  372.          ttime := 1;
  373.          mallowed := 1;
  374.          emails := 0;
  375.          posts := 0;
  376.       end else
  377.       if fw < 18 then
  378.       begin
  379.          ttime := 10;
  380.          mallowed := 15;
  381.          emails := 0;
  382.          posts := 0;
  383.       end else
  384.       if fw = 18 then
  385.       begin
  386.          ttime := 5;
  387.          mallowed := 5;
  388.          emails := 0;
  389.          posts := 1;
  390.       end else
  391.       if fw = 19 then
  392.       begin
  393.          ttime := 10;
  394.          mallowed := 10;
  395.          emails := 1;
  396.          posts := 1;
  397.       end else
  398.       if fw < 25 then
  399.       begin
  400.          ttime := 15;
  401.          mallowed := 20;
  402.          emails := 2;
  403.          posts := 2;
  404.       end else
  405.       if fw < 30 then
  406.       begin
  407.          ttime := 17;
  408.          mallowed := 25;
  409.          emails := 2;
  410.          posts := 3;
  411.       end else
  412.       if fw < 35 then
  413.       begin
  414.          ttime := 20;
  415.          mallowed := 30;
  416.          emails := 2;
  417.          posts := 3;
  418.       end else
  419.       if fw < 40 then
  420.       begin
  421.          ttime := 25;
  422.          mallowed := 40;
  423.          emails := 3;
  424.          posts := 4;
  425.       end else
  426.       if fw < 45 then
  427.       begin
  428.          ttime := 30;
  429.          mallowed := 50;
  430.          emails := 4;
  431.          posts := 4;
  432.       end else
  433.       if fw < 50 then
  434.       begin
  435.          ttime := 35;
  436.          mallowed := 60;
  437.          emails := 4;
  438.          posts := 4;
  439.       end else
  440.       if fw < 55 then
  441.       begin
  442.          ttime := 40;
  443.          mallowed := 70;
  444.          emails := 5;
  445.          posts := 5;
  446.       end else
  447.       if fw < 60 then
  448.       begin
  449.          ttime := 45;
  450.          mallowed := 75;
  451.          emails := 5;
  452.          posts := 5;
  453.       end else
  454.       if fw < 65 then
  455.       begin
  456.          ttime := 50;
  457.          mallowed := 85;
  458.          emails := 5;
  459.          posts := 5;
  460.       end else
  461.       if fw < 70 then
  462.       begin
  463.          ttime := 55;
  464.          mallowed := 90;
  465.          emails := 5;
  466.          posts := 6;
  467.       end else
  468.       if fw < 75 then
  469.       begin
  470.          ttime := 60;
  471.          mallowed := 100;
  472.          emails := 6;
  473.          posts := 6;
  474.          anst := anst + [pana];
  475.       end else
  476.       if fw < 80 then
  477.       begin
  478.          ttime := 65;
  479.          mallowed := 115;
  480.          emails := 6;
  481.          posts := 6;
  482.          anst := anst + [pana];
  483.       end else
  484.       if fw < 90 then
  485.       begin
  486.          ttime := 65;
  487.          mallowed := 120;
  488.          emails := 6;
  489.          posts := 6;
  490.          anst := anst + [pana,sanm];
  491.       end else
  492.       if fw < 95 then
  493.       begin
  494.          ttime := 70;
  495.          mallowed := 150;
  496.          emails := 6;
  497.          posts := 6;
  498.          anst := anst + [pana,sanm,postn];
  499.       end else
  500.       if fw < 99 then
  501.       begin
  502.          ttime := 70;
  503.          mallowed := 200;
  504.          emails := 6;
  505.          posts := 6;
  506.          anst := anst + [pana,sanm,postn,emailn];
  507.       end else
  508.       if fw = 99 then
  509.       begin
  510.          ttime := 70;
  511.          mallowed := 200;
  512.          emails := 6;
  513.          posts := 6;
  514.          anst := anst + [pana,sanm,postn,emailn,lcosysop];
  515.       end else
  516.       if fw = 100 then
  517.       begin
  518.          ttime := 85;
  519.          mallowed := 300;
  520.          emails := 6;
  521.          posts := 6;
  522.          anst := anst + [pana,sanm,postn,emailn,cosysop];
  523.       end else
  524.       if fw < 200 then
  525.       begin
  526.          ttime := 90;
  527.          mallowed := 500;
  528.          emails := 6;
  529.          posts := 6;
  530.          anst := anst + [pana,sanm,postn,emailn,cosysop];
  531.       end else
  532.       if fw < 255 then
  533.       begin
  534.          ttime := 100;
  535.          mallowed := 1000;
  536.          emails := 10;
  537.          posts := 10;
  538.          anst := anst + [pana,sanm,postn,emailn,cosysop];
  539.       end else
  540.       begin { sysop }
  541.          ttime := 255;
  542.          mallowed := 32767;
  543.          emails := 255;
  544.          posts := 255;
  545.          anst := anst + [pana,sanm,postn,emailn,cosysop];
  546.       end;
  547.     
  548.       write(slf,seclev[fw]);
  549.  
  550.     end;
  551.  
  552.         close(slf);
  553.     end;
  554. end.
  555.